@echo off
cls
echo.
echo        The Korean War
echo.
echo Loading graphic and event files for next phase of the game
echo Please choose from the options below:
echo.
echo 1. Load Summer 1950
echo 2. Load Winter 1950-51
echo 3. Load Summer 1951
echo 4. Load Winter 1951-52
echo 5. Load Summer 1952
echo 6. Load Winter 1952-53
echo 7. Load Summer 1953
echo X. Exit without Loading
echo.

if "%OS%"=="Windows_NT" goto winxp

choice /c:123456789X Enter your selection

if errorlevel 8 goto done
if errorlevel 7 goto mar53
if errorlevel 6 goto sep52
if errorlevel 5 goto mar52
if errorlevel 4 goto sep51
if errorlevel 3 goto mar51
if errorlevel 2 goto sep50
if errorlevel 1 goto jun50

:winxp
set /P choice=Type a number (1-5) and hit Enter: 
if %choice%==1 goto jun50
if %choice%==2 goto sep50
if %choice%==3 goto mar51
if %choice%==4 goto sep51
if %choice%==5 goto mar52
if %choice%==6 goto sep52
if %choice%==7 goto mar53
if %choice%==8 goto done
goto winxp

:jun50
echo.
echo Summer 1950
@echo off
copy sterrain1.bmp terrain1.bmp
copy sterrain2.bmp terrain2.bmp
copy srules.txt rules.txt
goto MSG

:sep50
echo.
echo Winter 1950-51
@echo off
copy wterrain1.bmp terrain1.bmp
copy wterrain2.bmp terrain2.bmp
copy wrules.txt rules.txt
goto MSG


:mar51
echo.
echo Summer 1951
@echo off
copy sterrain1.bmp terrain1.bmp
copy sterrain2.bmp terrain2.bmp
copy srules.txt rules.txt
goto MSG

:sep51
echo.
echo Winter 1951-52
@echo off
copy wterrain1.bmp terrain1.bmp
copy wterrain2.bmp terrain2.bmp
copy wrules.txt rules.txt
goto MSG

:mar52
echo.
echo Summer 1952
@echo off
copy sterrain1.bmp terrain1.bmp
copy sterrain2.bmp terrain2.bmp
copy srules.txt rules.txt
goto MSG

:sep52
echo.
echo Winter 1952-53
@echo off
copy wterrain1.bmp terrain1.bmp
copy wterrain2.bmp terrain2.bmp
copy wrules.txt rules.txt
goto MSG


:mar53
echo.
echo Summer 1953
@echo off
copy sterrain1.bmp terrain1.bmp
copy sterrain2.bmp terrain2.bmp
copy srules.txt rules.txt
goto MSG


:MSG
echo.
echo ==================================================================
echo The Korean War
echo.
echo 
echo 
echo 
echo 
echo ==================================================================
echo.
echo.
pause
goto done

:done
quit